home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / pcwrt27b.arc / PCWMOUSE.MSC < prev    next >
Text File  |  1986-10-01  |  5KB  |  161 lines

  1. ;
  2. ;    PC-Write Pop-up Menu Configuration
  3. ;
  4. Comment   ("Configured for PC-Write  (special thanks to Bruce Gregory)")
  5. Comment   ("")
  6. Comment   ("Modified for Version 2.6 (by Don Teiser on 2/26/86)")
  7. Comment   ("Modified for Version 2.7 (by Diana Sill on 10/1/86)")
  8.  
  9. ;    Parameters
  10. ;
  11. Sensitivity    (4,6)              ; (Xinc, Yinc)
  12. Hysteresis     (2,2)              ; (AutoX, AutoY)
  13. ReverseVideo   (Yes)              ; Menu is displayed in reverse video.
  14. FixedMenu      (No)               ; Menu is not in a fixed position.
  15. EnableBeep     (No)               ; Allows menu switching rather than beeping.
  16. ExitMenu       ("Exit This Menu") ; Instead of "Exit Pop-up" as exit string.
  17. ;
  18. ;    Cursor Definitions
  19. ;
  20. ArrowKeys: Cursor
  21. (
  22.      Left      ([Left])
  23.      Right     ([Right])
  24.      Up        ([Up])
  25.      Down      ([Down])
  26. )
  27.  
  28. ;
  29. ;    Button Definitions
  30. ;
  31. LBM: Button(Menu(Mark))       ;Left button, Mark Menu
  32. LBP: Button(Menu(Page))       ;Left button, Page Menu
  33. MBE: Button(Menu(Edit))       ;Middle button, Edit Menu
  34. MBF: Button(Menu(File))       ;Middle button, File Menu
  35. RBJ: Button(Menu(Jump))       ;Right button, Jump Menu
  36. RBS: Button(Menu(Search))     ;Right button, Search Menu
  37. ;
  38. ;     Menu Definitions
  39. ;
  40. Mark: Menu
  41. (
  42. Title("MARK")
  43. Item ("(To Page Menu)",       Menu(Page), Button(LBP))
  44. Item ()
  45. Item ("Clear Marks",          Keys([F5]))
  46. Item ()
  47. Item ("Mark",                 Keys([F6]))
  48. Item ("Delete",               Keys([F4]))
  49. Item ("Move  ",               Keys([F6] [F5]))
  50. Item ("Copy  ",               Keys([F3] [F5]))
  51. Item ()
  52. Item ("Mark All",             Keys([c-F5]))
  53. Item ("Copy to File",         Keys([c-F6]))
  54. Item ("Un-Delete",            Keys([c-F4] [F5]))
  55. Item ()
  56. )
  57. ;
  58. Page: Menu
  59. (
  60. Title("PAGE")
  61. Item ("(To Mark Menu)",      Menu(Mark), Button(LBM))
  62. Item ()
  63. Item ("Left  Margin",         Keys([c-[]))
  64. Item ("Right Margin",         Keys([c-]]))
  65. Item ()
  66. Item ("Ruler Line",           Keys([F2]))
  67. Item ("Load Ruler",           Keys([F2] [F6]))
  68. Item ()
  69. Item ("Break Pages",          Keys([a-F7]))
  70. Item ("Location?  ",          Keys([a-F9]))
  71. Item ()
  72. )
  73. ;                    
  74. Edit: Menu
  75. (
  76. Title("EDIT")
  77. Item ("(To File Menu)",       Menu(File), Button(MBF))
  78. Item ()
  79. Item ("Push/Overwr",          Keys([c-V]))
  80. Item ("Reformat   ",          Keys([F7]))
  81. Item ("Wrap+/-,Para+",        Keys([s-F7]))
  82. Item ("Upper/Lower",          Keys([F8]))
  83. Item ("UPPER ONLY ",          Keys([a-F8]))
  84. Item ("Center Line",          Keys([s-F8]))
  85. Item ()
  86. Item ("Del Word <-",          Keys([F4] [c-left] [F4]))
  87. Item ("Del Word ->",          Keys([F4] [c-right] [F4]))
  88. Item ("Del Line End",         Keys([F4] [end] [F4]))
  89. Item ("Del All Line",         Keys([c-Y]))
  90. Item ()
  91. )
  92. ;
  93. File: Menu
  94. (
  95. Title("FILE")
  96. Item ("(To Edit Menu)",       Menu(Edit),Button(MBE))
  97. Item ()
  98. Item ("Save",                 Keys([F1] [F3]))
  99. Item ("Save&Exit ",           Keys([F1] [F2]))
  100. Item ("Save&Shell",           Keys([F1] [F4]))
  101. Item ()
  102. Item ("Cancel&Exit ",         Keys([F1] [F9] [F2]))
  103. Item ("Cancel&Shell",         Keys([F1] [F9] [F4]))
  104. Item ()
  105. Item ("Rename File ",         Keys([F1] [F5]))
  106. Item ("Switch Files",         Keys([F1] [F6]))
  107. Item ("Insert File ",         Keys([c-F3]))
  108. Item ()
  109. )
  110. ;
  111. Jump: Menu
  112. (
  113. Title("JUMP")               
  114. Item ("(To Search Menu)",     Menu(Search), Button(RBS))
  115. Item ()
  116. Item ("Beginning",            Keys([a-=]))
  117. Item ("End of Text",          Keys([a--]))
  118. Item ()
  119. Item ("Screen Back ",         Keys([c-C]))
  120. Item ("Screen Ahead",         Keys([c-R]))
  121. Item ()
  122. Item ("Paragr Back ",         Keys([c-PgUp]))
  123. Item ("Paragr Ahead",         Keys([c-PgDn]))
  124. Item ("Page Back ",           Keys([F9] [a-T] [Enter] [Minus]))
  125. Item ("Page Ahead",           Keys([F9] [a-T] [Enter] [Plus]))
  126. Item ()
  127. Item ("Set  Marker",          Keys([c-home]))
  128. Item ("GoTo Marker",          Keys([c-end]))
  129. Item ()
  130. )
  131. ;
  132. Search: Menu
  133. (
  134. Title("SEARCH")
  135. Item ("(To Jump Menu)",       Menu(Jump), Button(RBJ))
  136. Item ()
  137. Item ("Set Find   ",          Keys([F9]))
  138. Item ("Set Replace",          Keys([F9][F10]))
  139. Item ()
  140. Item ("From Start",           Keys([a-=]))
  141. Item ("From End  ",           Keys([a--]))
  142. Item ()
  143. Item ("Search Back ",         Keys([Minus]))
  144. Item ("Search Ahead",         Keys([Plus]))
  145. Item ()
  146. Item ("Replace Once",         Keys([F10]))
  147. Item ("Replace All ",         Keys([a-F10] [F9]))
  148. Item ()
  149. )
  150. ;
  151. ;    Mouse Definition        
  152. ;
  153. Mouse
  154. (
  155.      Left      (LBM) 
  156.      Middle    (MBF) 
  157.      Right     (RBJ) 
  158.      Cursor    (ArrowKeys) 
  159. )
  160.  
  161.